home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gximage.h < prev    next >
C/C++ Source or Header  |  1996-04-25  |  10KB  |  248 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gximage.h */
  20. /* Internal definitions for image rendering */
  21. /* Requires gxcpath.h, gxdevmem.h, gxdcolor.h, gzpath.h */
  22. #include "gsiparam.h"
  23. #include "gxcspace.h"
  24. #include "strimpl.h"        /* for siscale.h */
  25. #include "siscale.h"
  26. #include "gxdda.h"
  27.  
  28. /* Interface for routine used to unpack and shuffle incoming samples. */
  29. /* The Unix C compiler can't handle typedefs for procedure */
  30. /* (as opposed to pointer-to-procedure) types, */
  31. /* so we have to do it with macros instead. */
  32. #define iunpack_proc(proc)\
  33.   void proc(P6(byte *bptr, const byte *data, uint dsize,\
  34.            const sample_map *pmap, int spread, uint inpos))
  35. /* Interface for routine used to render a (source) scan line. */
  36. #define irender_proc(proc)\
  37.   int proc(P5(gx_image_enum *penum, byte *buffer, uint w, int h,\
  38.           gx_device *dev))
  39.  
  40. /*
  41.  * Incoming samples may go through two different transformations:
  42.  *
  43.  *    - For N-bit input samples with N <= 8, N-to-8-bit expansion
  44.  *    may involve a lookup map.  Currently this map is either an
  45.  *    identity function or a subtraction from 1 (inversion).
  46.  *
  47.  *    - The 8-bit or frac expanded sample may undergo decoding (a linear
  48.  *    transformation) before being handed off to the color mapping
  49.  *    machinery.
  50.  *
  51.  * If the decoding function's range is [0..1], we fold it into the
  52.  * expansion lookup; otherwise we must compute it separately.
  53.  * For speed, we distinguish 3 different cases of the decoding step:
  54.  */
  55. typedef enum {
  56.     sd_none,        /* decoded during expansion */
  57.     sd_lookup,        /* use lookup_decode table */
  58.     sd_compute        /* compute using base and factor */
  59. } sample_decoding;
  60. typedef struct sample_map_s {
  61.  
  62.     /* The following union implements the expansion of sample */
  63.     /* values from N bits to 8, and a possible inversion. */
  64.  
  65.     union {
  66.  
  67.         bits32 lookup4x1to32[16]; /* 1 bit/sample, not spreading */
  68.         bits16 lookup2x2to16[16]; /* 2 bits/sample, not spreading */
  69.         byte lookup8[256];    /* 1 bit/sample, spreading [2] */
  70.                     /* 2 bits/sample, spreading [4] */
  71.                     /* 4 bits/sample [16] */
  72.                     /* 8 bits/sample [256] */
  73.  
  74.     } table;
  75.  
  76.     /* If an 8-bit fraction doesn't represent the decoded value */
  77.     /* accurately enough, but the samples have 4 bits or fewer, */
  78.     /* we precompute the decoded values into a table. */
  79.     /* Different entries are used depending on bits/sample: */
  80.     /*    1,8,12 bits/sample: 0,15    */
  81.     /*    2 bits/sample: 0,5,10,15    */
  82.     /*    4 bits/sample: all    */
  83.  
  84.     float decode_lookup[16];
  85. #define decode_base decode_lookup[0]
  86. #define decode_max decode_lookup[15]
  87.  
  88.     /* In the worst case, we have to do the decoding on the fly. */
  89.     /* The value is base + sample * factor, where the sample is */
  90.     /* an 8-bit (unsigned) integer or a frac. */
  91.  
  92.     double decode_factor;
  93.  
  94.     sample_decoding decoding;
  95.  
  96. } sample_map;
  97.  
  98. /* Decode an 8-bit sample into a floating point color component. */
  99. /* penum points to the gx_image_enum structure. */
  100. #define decode_sample(sample_value, cc, i)\
  101.   switch ( penum->map[i].decoding )\
  102.   {\
  103.   case sd_none:\
  104.     cc.paint.values[i] = (sample_value) * (1.0 / 255.0);  /* faster than / */\
  105.     break;\
  106.   case sd_lookup:    /* <= 4 significant bits */\
  107.     cc.paint.values[i] =\
  108.       penum->map[i].decode_lookup[(sample_value) >> 4];\
  109.     break;\
  110.   case sd_compute:\
  111.     cc.paint.values[i] =\
  112.       penum->map[i].decode_base + (sample_value) * penum->map[i].decode_factor;\
  113.   }
  114.  
  115. /* Decode a frac value similarly. */
  116. #define decode_frac(frac_value, cc, i)\
  117.   cc.paint.values[i] =\
  118.     penum->map[i].decode_base + (frac_value) * penum->map[i].decode_factor
  119.  
  120. /* Define the distinct postures of an image. */
  121. /* Each posture includes its reflected variant. */
  122. typedef enum {
  123.   image_portrait = 0,            /* 0 or 180 degrees */
  124.   image_landscape,            /* 90 or 270 degrees */
  125.   image_skewed                /* any other transformation */
  126. } image_posture;
  127.  
  128. /* Define an entry in the image color table.  For single-source-plane */
  129. /* images, the table index is the sample value, and the key is not used; */
  130. /* for multiple-plane (color) images, the table index is a hash of the key, */
  131. /* which is the concatenation of the source pixel components. */
  132. /* "Clue" = Color LookUp Entry (by analogy with CLUT). */
  133. typedef struct gx_image_clue_s {
  134.     gx_device_color dev_color;
  135.     bits32 key;
  136. } gx_image_clue;
  137.  
  138. /* Main state structure */
  139.  
  140. #ifndef gx_device_rop_texture_DEFINED
  141. #  define gx_device_rop_texture_DEFINED
  142. typedef struct gx_device_rop_texture_s gx_device_rop_texture;
  143. #endif
  144.  
  145. typedef struct gx_image_enum_s gx_image_enum;
  146. struct gx_image_enum_s {
  147.     /* We really want the map structure to be long-aligned, */
  148.     /* so we choose shorter types for some flags. */
  149.         /* Following are set at structure initialization */
  150.     int width;
  151.     int height;
  152.     byte bps;            /* bits per sample: 1, 2, 4, 8, 12 */
  153.     byte unpack_bps;        /* bps for computing unpack proc, */
  154.                     /* set to 8 if no unpacking */
  155.     byte log2_xbytes;        /* log2(bytes per expanded sample): */
  156.                     /* 0 if bps <= 8, log2(sizeof(frac)) */
  157.                     /* if bps > 8 */
  158.     byte spp;            /* samples per pixel: 1, 3, or 4 */
  159.     byte num_planes;        /* spp if colors are separated, */
  160.                     /* 1 otherwise */
  161.     byte spread;            /* num_planes << log2_xbytes */
  162.     byte masked;            /* 0 = [color]image, 1 = imagemask */
  163.     byte interpolate;        /* true if Interpolate requested */
  164.     gs_matrix matrix;        /* image space -> device space */
  165.     fixed mtx, mty;            /* device coords of image origin */
  166.     gs_fixed_point row_extent;    /* total change in X/Y over one row, */
  167.                     /* for row DDA */
  168.     iunpack_proc((*unpack));
  169.     irender_proc((*render));
  170.     gs_state *pgs;            /****** BEING PHASED OUT ******/
  171.     const gs_imager_state *pis;
  172.     const gs_color_space *pcs;    /* color space of image */
  173.     gs_memory_t *memory;
  174.     gx_device *dev;
  175.     byte *buffer;            /* for expanding samples to a */
  176.                     /* byte or frac */
  177.     uint buffer_size;
  178.     byte *line;            /* buffer for an output scan line */
  179.     uint line_size;
  180.     uint line_width;        /* width of line in device pixels */
  181.     uint bytes_per_row;        /* # of input bytes per row */
  182.                     /* (per plane, if spp == 1 and */
  183.                     /* num_planes > 1) */
  184.     image_posture posture;
  185.     byte use_rop;            /* true if CombineWithColor requested */
  186.     byte clip_image;        /* mask, see below */
  187.         /* Either we are clipping to a rectangle, in which case */
  188.         /* the individual x/y flags may be set, or we are clipping */
  189.         /* to a general region, in which case only clip_region */
  190.         /* is set. */
  191. #define image_clip_xmin 1
  192. #define image_clip_xmax 2
  193. #define image_clip_ymin 4
  194. #define image_clip_ymax 8
  195. #define image_clip_region 0x10
  196.     byte slow_loop;            /* true if !(skewed | */
  197.                     /* imagemask with a halftone) */
  198.     byte device_color;        /* true if device color space and */
  199.                     /* standard decoding */
  200.     gs_fixed_rect clip_outer;    /* outer box of clip path */
  201.     gs_fixed_rect clip_inner;    /* inner box of clip path */
  202.     gs_logical_operation_t log_op;    /* logical operation */
  203.     fixed adjust;            /* adjustment when rendering */
  204.                     /* characters */
  205.     gx_device_clip *clip_dev;    /* clipping device (if needed) */
  206.     gx_device_rop_texture *rop_dev;    /* RasterOp device (if needed) */
  207.     stream_IScale_state *scaler;    /* scale state for */
  208.                     /* Interpolate (if needed) */
  209.     /* Following are updated dynamically */
  210.     int x, y;            /* next source x & y */
  211.     uint byte_in_row;        /* current input byte position in row */
  212.     fixed xcur, ycur;        /* device x, y of current row */
  213.     gx_dda_fixed next_x;        /* DDA for xcur, holds next values */
  214.                     /* when render proc is called */
  215.     gx_dda_fixed next_y;        /* DDA for ycur ditto */
  216.     int line_xy;            /* x or y value at start of buffered line */
  217.     int yci, hci;            /* integer y & h of row (portrait) */
  218.     int xci, wci;            /* integer x & w of row (landscape) */
  219.     /* The maps are set at initialization.  We put them here */
  220.     /* so that the scalars will have smaller offsets. */
  221.     sample_map map[4];
  222.     /* Entries 0 and 255 of the following are set at initialization */
  223.     /* for monochrome images; other entries are updated dynamically. */
  224.     gx_image_clue clues[256];
  225. #define icolor0 clues[0].dev_color
  226. #define icolor1 clues[255].dev_color
  227. };
  228. /* Enumerate the pointers in an image enumerator. */
  229. #define gx_image_enum_do_ptrs(m)\
  230.   m(0,pgs) m(1,pis) m(2,pcs) m(3,dev) m(4,buffer) m(5,line)\
  231.   m(6,clip_dev) m(7,rop_dev) m(8,scaler)
  232. #define gx_image_enum_num_ptrs 9
  233. #define private_st_gx_image_enum() /* in gsimage.c */\
  234.   gs_private_st_composite(st_gx_image_enum, gx_image_enum, "gx_image_enum",\
  235.     image_enum_enum_ptrs, image_enum_reloc_ptrs)
  236.  
  237. /* Compare two device colors for equality. */
  238. #define dev_color_eq(devc1, devc2)\
  239.   (gx_dc_is_pure(&(devc1)) ?\
  240.    gx_dc_is_pure(&(devc2)) &&\
  241.    gx_dc_pure_color(&(devc1)) == gx_dc_pure_color(&(devc2)) :\
  242.    gx_dc_is_binary_halftone(&(devc1)) ?\
  243.    gx_dc_is_binary_halftone(&(devc2)) &&\
  244.    gx_dc_binary_color0(&(devc1)) == gx_dc_binary_color0(&(devc2)) &&\
  245.    gx_dc_binary_color1(&(devc1)) == gx_dc_binary_color1(&(devc2)) &&\
  246.    (devc1).colors.binary.b_level == (devc2).colors.binary.b_level :\
  247.    false)
  248.